Expand description
usvg
(micro SVG) is an SVG parser that tries to solve most of SVG complexity.
SVG is notoriously hard to parse. usvg
presents a layer between an XML library and
a potential SVG rendering library. It will parse an input SVG into a strongly-typed tree structure
were all the elements, attributes, references and other SVG features are already resolved
and presented in a simplest way possible.
So a caller doesn’t have to worry about most of the issues related to SVG parsing
and can focus just on the rendering part.
Features
- All supported attributes are resolved. No need to worry about inheritable, implicit and default attributes
- CSS will be applied
- Only simple paths
- Basic shapes (like
rect
andcircle
) will be converted into paths - Paths contain only absolute MoveTo, LineTo, CurveTo and ClosePath segments. ArcTo, implicit and relative segments will be converted
- Basic shapes (like
use
will be resolved and replaced with the reference content- Nested
svg
will be resolved - Invalid, malformed elements will be removed
- Relative length units (mm, em, etc.) will be converted into pixels/points
- External images will be loaded
- Internal, base64 images will be decoded
- All references (like
#elem
andurl(#elem)
) will be resolved switch
will be resolved- Text elements, which are probably the hardest part of SVG, will be completely resolved.
This includes all the attributes resolving, whitespaces preprocessing (
xml:space
), text chunks and spans resolving - Markers will be converted into regular elements. No need to place them manually
- All filters are supported. Including filter functions, like
filter="contrast(50%)"
- Recursive elements will be detected an removed
Limitations
- Unsupported SVG features will be ignored
- CSS support is minimal
- Only static SVG features,
e.g. no
a
,view
,cursor
,script
, no events and no animations - Text elements must be converted into paths before writing to SVG.
Modules
- SVG filter types.
fontdb
is a simple, in-memory font database with CSS-like queries.- Represent an XML 1.0 document as a read-only tree.
- A collection of bounded numeric types.
- A tiny-skia Bezier path implementation.
- Some useful utilities.
Structs
- Representation of the
preserveAspectRatio
attribute. - A bounding box calculator.
- A generic gradient.
- A clip-path element.
- A 8-bit RGB color.
- A fill style.
- Text font properties.
- A group container.
- A raster image element.
- An
xlink:href
resolver for<image>
elements. - A linear gradient.
- A mask element.
- A non-zero
f32
. - An immutable, finite
f32
that is known to be > 0. - A rectangle defined by left, top, right and bottom edges.
- An immutable, finite
f32
in a 0..=1 range. - Processing options.
- A path element.
- A pattern element.
- An immutable, finite
f32
that is known to be >= 0. - A radial gradient.
- A rectangle defined by left, top, right and bottom edges.
- A size.
- Gradient’s stop element.
- A stroke style.
- A
stroke-miterlimit
value. - A text element.
- A text chunk.
- A text span decoration.
- A text span decoration style.
- A path used by text-on-path.
- A text style span.
- An affine transformation matrix.
- A nodes tree container.
- View box.
- XML writing options.
Enums
- An attribute ID.
- Representation of the
align
value of thepreserveAspectRatio
attribute. - An alignment baseline property.
- A baseline shift property.
- A blending mode property.
- A dominant baseline property.
- An element ID.
- List of all errors.
- A fill rule.
- A font stretch property.
- A font style property.
- An embedded image kind.
- An image rendering method.
- A length adjust property.
- A line cap.
- A line join.
- A mask type.
- Node’s kind.
- A paint style.
- Representation of the
paint-order
property. - A shape rendering method.
- A spread method.
- A text chunk anchor property.
- A text chunk flow property.
- A text rendering method.
- An element units.
- A visibility property.
- A writing mode.
Traits
- ApproxEqUlps is a trait for approximate equality comparisons. The associated type Flt is a floating point type which implements Ulps, and is required so that this trait can be implemented for compound types (e.g. vectors), not just for the floats themselves.
- Approximate zero equality comparisons.
- Checks that the current number is > 0.
- Additional
Node
methods. - A trait to parse
usvg_tree::Tree
from various sources. - A
usvg::Tree
extension trait. - A trait to write
usvg::Tree
back to SVG.
Functions
- Decompresses an SVGZ file.
Type Aliases
- Alias for
rctree::Node<NodeKind>
. - An alias to
NormalizedF32
. - An alias to
NormalizedF32
. - An alias to
NonZeroPositiveF32
.